home *** CD-ROM | disk | FTP | other *** search
/ EnigmA Amiga Run 1995 November / EnigmA AMIGA RUN 02 (1995)(G.R. Edizioni)(IT)[!][issue 1995-11][Skylink CD].iso / earcd / program / gcc / ixemul41.lha / ixemul-41.3 / gnulib / floatsisf.c < prev    next >
C/C++ Source or Header  |  1994-08-19  |  277b  |  19 lines

  1. #include "common.h"
  2. #ifdef IEEE_SINGBAS
  3. #include <inline/mathieeesingbas.h>
  4. #else
  5. #include <inline/mathffp.h>
  6. #include <inline/mathtrans.h>
  7. #endif
  8.  
  9. SFVALUE
  10. __floatsisf (a)
  11.      SItype a;
  12. {
  13. #ifdef IEEE_SINGBAS
  14.   return IEEESPFlt(a);
  15. #else
  16.   return SPTieee( SPFlt( a));
  17. #endif
  18. }
  19.